home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevx.h < prev    next >
C/C++ Source or Header  |  1995-02-14  |  5KB  |  178 lines

  1. /* Copyright (C) 1989, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevx.h */
  20. /* Header file with X device structure */
  21. /* Requires gxdevice.h and x_.h */
  22.  
  23. /* Define the type of an X pixel. */
  24. typedef unsigned long x_pixel;
  25.  
  26. /* Define a rectangle structure for update bookkeeping */
  27. typedef struct rect_s {
  28.   int xo, yo, xe, ye;
  29. } rect;
  30.  
  31. /* Define dynamic color hash table structure */
  32. struct x11color_s;
  33. typedef struct x11color_s x11color;
  34. struct x11color_s {
  35.     XColor color;
  36.     x11color *next;
  37. };
  38.  
  39. /* Define PostScript to X11 font name mapping */
  40. struct x11fontmap_s;
  41. typedef struct x11fontmap_s x11fontmap;
  42. struct x11fontmap_s {
  43.     char *ps_name;
  44.     char *x11_name;
  45.     char **std_names;
  46.     char **iso_names;
  47.     int std_count, iso_count;
  48.     x11fontmap *next;
  49. };
  50.  
  51. /* Define the X Windows device */
  52. typedef struct gx_device_X_s {
  53.     gx_device_common;
  54.     bool IsPageDevice;
  55.  
  56.     /* An XImage object for writing bitmap images to the screen */
  57.     XImage image;
  58.  
  59.     /* Global X state */
  60.     Display *dpy;
  61.     Screen *scr;
  62.     XVisualInfo *vinfo;
  63.     Colormap cmap;
  64.     Window win;
  65.     GC gc;
  66.  
  67.     /* An optional Window ID supplied as a device parameter */
  68.     Window pwin;
  69.  
  70.     /* A backing pixmap so X will handle exposure automatically */
  71.     Pixmap bpixmap;            /* 0 if useBackingPixmap is false, */
  72.                     /* or if it can't be allocated */
  73.     int ghostview;        /* flag to tell if ghostview is in control */
  74.     Window mwin;        /* window to receive ghostview messages */
  75. /* Don't include standard colormap stuff for X11R3 and earlier */
  76. #if HaveStdCMap
  77.     XStandardColormap *std_cmap;    /* standard color map if available */
  78. #endif
  79.     gs_matrix initial_matrix;    /* the initial transformation */
  80.     Atom NEXT, PAGE, DONE;    /* Atoms used to talk to ghostview */
  81.     rect update;        /* region needing updating */
  82.     long up_area;        /* total area of update */
  83.                 /* (always 0 if no backing pixmap) */
  84.     int up_count;        /* # of updates since flush */
  85.     Pixmap dest;        /* bpixmap if non-0, else win */
  86.     x_pixel colors_or;    /* 'or' of all device colors used so far */
  87.     x_pixel colors_and;    /* 'and' ditto */
  88.  
  89.     /* An intermediate pixmap for the stencil case of copy_mono */
  90.     struct {
  91.       Pixmap pixmap;
  92.       GC gc;
  93.       int raster, height;
  94.     } cp;
  95.  
  96.     /* Structure for dealing with the halftone tile. */
  97.     /* Later this might become a multi-element cache. */
  98.     struct {
  99.       Pixmap pixmap;
  100.       Pixmap no_pixmap;    /* kludge to get around X bug */
  101.       gx_bitmap_id id;
  102.       int width, height, raster;
  103.       x_pixel fore_c, back_c;
  104.     } ht;
  105.  
  106.     /* Cache the function and fill style from the GC */
  107.     int function;
  108.     int fill_style;
  109.     Font fid;
  110.  
  111. #define set_fill_style(style)\
  112.   if ( xdev->fill_style != style )\
  113.     XSetFillStyle(xdev->dpy, xdev->gc, (xdev->fill_style = style))
  114. #define set_function(func)\
  115.   if ( xdev->function != func )\
  116.     XSetFunction(xdev->dpy, xdev->gc, (xdev->function = func))
  117. #define set_font(font)\
  118.   if ( xdev->fid != font )\
  119.     XSetFont(xdev->dpy, xdev->gc, (xdev->fid = font))
  120.  
  121.     x_pixel back_color, fore_color;
  122.  
  123.     Pixel    background, foreground;
  124. #define X_max_color_value 0xffff
  125. #define cube_index(r,g,b) (((r) * xdev->color_info.dither_colors + (g)) * \
  126.                   xdev->color_info.dither_colors + (b))
  127.     x_pixel    *dither_colors;
  128.     ushort    color_mask;
  129.     int    num_rgb;
  130.     x11color    *(*dynamic_colors)[];
  131.     int    max_dynamic_colors, dynamic_size, dynamic_allocs;
  132.  
  133. #define note_color(pixel)\
  134.   xdev->colors_or |= pixel,\
  135.   xdev->colors_and &= pixel
  136. #define set_back_color(pixel)\
  137.   if ( xdev->back_color != pixel )\
  138.    { xdev->back_color = pixel;\
  139.      note_color(pixel);\
  140.      XSetBackground(xdev->dpy, xdev->gc, pixel);\
  141.    }
  142. #define set_fore_color(pixel)\
  143.   if ( xdev->fore_color != pixel )\
  144.    { xdev->fore_color = pixel;\
  145.      note_color(pixel);\
  146.      XSetForeground(xdev->dpy, xdev->gc, pixel);\
  147.    }
  148.  
  149.     /* Defautlts set by resources */
  150.     Pixel borderColor;
  151.     Dimension borderWidth;
  152.     String geometry;
  153.     int maxGrayRamp, maxRGBRamp;
  154.     String palette;
  155.     String regularFonts;
  156.     String symbolFonts;
  157.     String dingbatFonts;
  158.     x11fontmap *regular_fonts;
  159.     x11fontmap *symbol_fonts;
  160.     x11fontmap *dingbat_fonts;
  161.     Boolean useXFonts, useFontExtensions, useScalableFonts, logXFonts;
  162.     float xResolution, yResolution;
  163.  
  164.     /* Flags work around various X server problems. */
  165.     Boolean useBackingPixmap;
  166.     Boolean useXPutImage;
  167.     Boolean useXSetTile;
  168.  
  169. } gx_device_X;
  170.  
  171. /* function to keep track of screen updates */
  172. void x_update_add(P5(gx_device *, int, int, int, int));
  173. void gdev_x_clear_window(P1(gx_device_X *));
  174. int x_catch_free_colors(P2(Display *, XErrorEvent *));
  175.  
  176. /* Number used to distinguish when resoultion was set from the command line */
  177. #define FAKE_RES (16*72)
  178.